I have installed both modules using pip install and the installation was successful. One more thing numpy module installed with Pandas. So when I separately tried to install numpy using pip install it throws a message requirement already satisfied.
However, when I tried to create an array using numpy i got an error. Below is the snippet of error fyi.
Traceback (most recent call last): File "D:Python Languagenumpy.py", line 1, in <module> import pandas as pd File "C:UsersDellAppDataLocalProgramsPythonPython36libsite-packagespandas__init__.py", line 19, in <module> "Missing required dependencies {0}".format(missing_dependencies)) ImportError: Missing required dependencies ['numpy']
The same error I am getting for Quandl as well.
I am not able to understand why am I getting these errors if I have already installed the modules. I have also uninstalled Python2 earlier installed on my system.
Could anyone here help me out with this problem. I have tried lot of ways however its still not working.
Any help here would be appreciated.
Thanks!
Regards, Rohit Thakur
You must be logged in to post. Please login or register an account.
do a pip --version in your cmd.exe
Make sure pip is for python 3.6. If not, you've got another version of Python that pip is defaulting to.
-Harrison 7 years ago
You must be logged in to post. Please login or register an account.